Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
hello,
i have added a checkboxes in a grid.
Bind the service to the grid and then i have bind EditedTable of grid to infotable input parameter(Workout_id) of the DB service to pass the Workout_id.
I set iseditable and multiselect property of grid to true, and also set the true value to editable in configure grid columns.
But after that the checkboxes has set default value true. I don't want default value true for checkboxes.
so is there any way where i can set default value false to checkboxes? here i have shared attachments, please refer for your better understanding.
Regards,
Ruchika
Solved! Go to Solution.
So lets assume that GetInfoToGrid will return a infotable with the datashape has "Name" & "IsTrue" columns to the grid.
Your service output should be like
for(var i=0;i<5;i++)
{
var newEntry = new Object();
newEntry .Name= "somename";
newEntry .IsTrue = false; // always set to false when returned via service so that the check box is set to false
result.AddRow(newEntry1);
}
Just ensure that the datatype of the column that you want to make it as checkbox is of type Boolean. Go to column rendering of the grid configuration and make it has checkbox.
If you want all the data rows set default to false, the data which is getting bound to grid should have the column set to false from the service itself. And you can use the edited table of the grid for further processing.
Thanks
Thanks for response,
I wanted to ask how i set default column value to false from service
So lets assume that GetInfoToGrid will return a infotable with the datashape has "Name" & "IsTrue" columns to the grid.
Your service output should be like
for(var i=0;i<5;i++)
{
var newEntry = new Object();
newEntry .Name= "somename";
newEntry .IsTrue = false; // always set to false when returned via service so that the check box is set to false
result.AddRow(newEntry1);
}
Hi @Ru.
If you feel your question has been answered, please mark the appropriate response as the Accepted Solution for the benefit of others with the same question.
Thank you for your participation in our community.
Regards.
--Sharon
Hi @Ru.
I have marked the Accepted Solution for this post. If you disagree that it is the solution, please let me know.
Regards.
--Sharon