I've added an Unbound column to grid for adding combo control in it. I tried to add UltraDropDown/UltraCombo both through code and at design time but it doesn't show in grid. I tried both with EditorComponent and ValueList properties. Although it's not giving any error but it doesn't show up in grid.If I replace this UltraCombo with check box it works perfect both at design and run time.
Hi Harshit,
Harshit said:I have made it editable using filterOperamdProperties
What is "filterOperamdProperties?" That doesn't mean anything to me.
For UltraCombo, typing into the edit portion of the control is allowed by default. You turn this off by setting the DropDownStyle property to DropDownList. This forces the user to select from the list exactly like the DotNet Framework's ComboBox control.
Harshit said:Below is the snapshot of how is it appearing on the screen.
There's no screen shot attached to your post. To attach an image file, go to the Options tab while posting and attach the image as a file.
Right now, your description is rather confusing. You say that the values are not displayed, but that you can see them when scrolling. My best guess is that ou must be seeing the scrolltips showing the values.
If that's the case, then that means that the DropDown is getting the correct data and it's just not displayed on the screen. This makes sense considering that you are getting rows and can scroll. But as for why the data is not displaying in the cells, I really can't say. This must be something your code is doing. Perhaps something in your application is applying an Appearance to the cells such that the foreground color is the same as the background color. This could also happen if you are loading an Application Style Library (isl) file. Check your code for StyleManager.Load. Or... less likely, perhaps you have a CreationFilter or a DrawFilter which is deliberately removing the text.
Harshit said:Another thing I am confused about is, in the existing code, they have implemented these ultracombos, as I explained above. So in the designer.cs of this view, there so many appearances have been declared.
Appearances can be set in the Visual Studio Form Designer through the property grid. Or they could be applied in code. It's possible that certain very limited default appearances are also applied when you simply place the control on the form at design-time.
Harshit said:Similarly, they have assigned ultragridBands as well to different ultracombos as band serializer. how does this band serializer work ad what its significance?
The BandSerializer is only used in the Form Designer in Visual Studio. This is code that is automatically generated by the form designer and the control and you should not modify that code directly.
This all goes back to the original issue of this thread, which was that the control was being created at run-time and never parented to a form. But I don't think that's the same issue you are having at all. If it was, you would not be getting rows and you would not be seeing the data in the scroll tips.
We have got this project and we need to implement some change requests. In as is code, they have implemented many ultracombos for such columns and its working fine for them but those ultracombos are not editable, i.e. the user would have to select something from the dropdown list, he can not type in the box. On the contrary, this time we need to make this column editable as well in addition to the dropdown.
I have made it editable using filterOperamdProperties. I was able to do so with both - ultradropdown and ultracombo. Its just that the dropdown list is coming up invisible. I know that the values are there as when I scroll down using the scroller coming up with dropdown, it shows me the values corresponding to the current position of the dropdown. But the values are not visible in the dropdownlist. Below is the snapshot of how is it appearing on the screen.
That box showing BUD ID : 00003282 is appearing because I have kept the scroller clicked while taking this snapgrab. It also proves that the values are coming up. There are just not visible.
Another thing I am confused about is, in the existing code, they have implemented these ultracombos, as I explained above. So in the designer.cs of this view, there so many appearances have been declared. And they have been used for different properties of ultracombos. For Example : they have used appearance1 for ultracombo.groupbybox, then they have used another appearance for ultracombo.rowappearance. My question is, how these appearances got created. Had somebody might have hardcoded these or they have been created through ultragrid design? If through design, then how do we do it? Similarly, they have assigned ultragridBands as well to different ultracombos as band serializer. how does this band serializer work ad what its significance?
I have not write any code related to these appearances or band serializer. Can it have anything to do with why I am not getting values visible in my dropdown list?
-Harshit
Hi Sir,
I checked both the datatypes. Both are coming up as string. I have been stuck at this for 4-5 days. The values are getting fetched on screen as well. Its just that they are not visible in the dropdown. Please let me know what information you need about the application and the system. I'll double check it and provide you the same.
Thanks,
Harshit
No, that's not how it works. The default DataType of an unbound column is string. The DataType of a bound column is determined by the data source. So the Dotnet framework will translate varchar2 into something the DotNet framework understands, since varchar2 is not a data type in DotNet. I'm assuming it will probably be string, and like I said, I doubt that this has anything to do with the problem you are experiencing, but since you want to explore it, you should check the DataType property of the column in the grid and the column in the DropDown at run-time so see what they are actually returning and make sure they are the same.
I have not modified either of the data types in my code so both of these should contain their default datatype. I know that my UltrawinGrid's default data type is string. How do I check it for column in the dropdown?
Regards,