Add 3 different field and display in a read only field
- Dmitry Kozlov
- Site Admin
- Posts: 1524
- Joined: Thu Jun 07, 2012
Hi,
You can create a calculated column and concatinate these numbers:
https://msdn.microsoft.com/en-us/librar ... e.14).aspx
You can create a calculated column and concatinate these numbers:
https://msdn.microsoft.com/en-us/librar ... e.14).aspx
function updateSum() {
var a = parseFloat(fd.field('Capital').control().value());
var b = parseFloat(fd.field('Expense').control().value());
fd.field('Total_x0020_Investment_x0020_to_').control()._el().html(a + b);
}
// updates calculated field value when value of field A is changed.
fd.field('Capital').control().change(function() {
updateSum();
});
// updates calculated field value when value of field B is changed.
fd.field('Expense').control().change(function() {
updateSum();
});
This worked for me. but how do i put initial value 0 to the Total_x0020_Investment_x0020_to_ field.
I want to add '$' sign infront of sum.
if capital and expense is empty i want to show $0 in Total_x0020_Investment_x0020_to_
if user input number like 100,000, i would like to ignore comma (,)
var a = parseFloat(fd.field('Capital').control().value());
var b = parseFloat(fd.field('Expense').control().value());
fd.field('Total_x0020_Investment_x0020_to_').control()._el().html(a + b);
}
// updates calculated field value when value of field A is changed.
fd.field('Capital').control().change(function() {
updateSum();
});
// updates calculated field value when value of field B is changed.
fd.field('Expense').control().change(function() {
updateSum();
});
This worked for me. but how do i put initial value 0 to the Total_x0020_Investment_x0020_to_ field.
I want to add '$' sign infront of sum.
if capital and expense is empty i want to show $0 in Total_x0020_Investment_x0020_to_
if user input number like 100,000, i would like to ignore comma (,)
-
- Information
-
Who is online
Users browsing this forum: No registered users and 9 guests