1) How do I bring the DropDownList to the front? The use does not know it is a DropDownList until they click into the cell.
2) How do I access the DropDownList via Client Side code? Particularly after the ValueChangedHandler fires.
I need to use the ValueChangedHandler which I have firing. I dont see anything useful in the args. Also, How do I bring the DropDown to the front? Thanks!
Hello jdymond,
you could put WebDropDown in template column and after that to access the dropdown in the templated column with something like that:
var cell=gridrows.get_row(rowindex).get_cellByColumnKey("Sheets").get_element().children[0].innerText='something'
Hope this helps