Hi
I have an UltraWebGrid NA2010.3 to allow my users enter their timesheet; In filling out each timesheet row, they have a work type column which is of type ValueList and which is populated on page load. When filling in each row, when a value is selected, a second column Work SubType (also a ValueList) is populated based on the Work type selection. This is done in javascript using the grdTimeSheet_AfterCellUpdateHandler and calling a web method (in the code behind) returning the list to populate the SubType ValueList. This works fine.
My problem is when I load the timesheet from the database; in this case I am populating each row one at a time and setting the row's work type works as expected with the ValueList present if some user clicks on the type cell. Setting the subtype also works, but the dropdown ValueList is not populated (looks like the AfterCellUpdated handler does not work in this case?).
Is there a way I can populate the subtype dropdown foreach row based on the value of that row's type value?
Hi cloucas,
Thank you for the follow up. I'm glad you solved your issue.
Do not hesitate to ask if you have any other concerns.
Nikolay thanks for your response.
I ended up wiring the RowActive event, and each time this happens, looking up the category cell, and if populated, I call the method to populate the sub-category drop-down; it works just fine.
Thanks for your help.
Hello cloucas,
You should be able to have different selected values for each row's dropdown. In order to be able to investigate the issue you are experiencing, I would need to see the code you are using to populate the dropdowns, or a small isolated sample website, demonstrating your scenario. Thank you.
Nikolay hi
Looking at the problem a bit closer now, it seems that my friend is resetting the row's value list to null every time the selected row changes, by having wired the AfterRowUpdateHandler event.
I have commented out his code which sets the row's value list to null, and the drop down now retains its value after the row is changed. I however am facing another issue:
When in Row1, I select Item1 and Row1's second drop down is populated based on Row1.
I then move to Row2, select item2 and Row2's drop down is populated based on Row2.
So far so good.
In populating Row3, I decide that the second drop down in Row1 is wrong so I double-click on it to change it. I then get the options of the Row2 item rather than those of Row1.
Can the Value list populating each row's drop down be different (to reflect the item chosen in each row), or must it be the same?
I should say here that no post back takes place when the row is changed, so it is all in client side (except the retrieval of the values from the database for each item selected which is being done using a callback)
Hi Chris,
Yes, you could also bind the dropdown in code-behind, in page load event:
UltraWebGrid1.Columns[0].ValueList.DataSource = GetDataSource();
UltraWebGrid1.Columns[0].ValueList.ValueMember = "Name";
UltraWebGrid1.Columns[0].ValueList.DataBind();
Please feel free to contact me if you have any questions.