hi All,
i'm new in Infragistic tools and i don't understand how to design ultra win grid like attached file.
Data is cuming from Stored Procedure and i m using vb.net for this,.
please help me and reply me as soon as possible.
Thanks in Advance
Hello anuj1692,
What you could try is setting the following in the InitializeLayout event of the UltraGrid:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { //If you need to turn off the Active appearances e.Layout.Override.ActiveAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False; //If you need to turn off the Selected appearances e.Layout.Override.SelectedAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False; }
This blue line is not a back color its a selection of cells if i click on any other cell than it will like same so dont think that it is backgrounf color.
Hi,
Thanks for your help. Without ur help its very difficult for me to achieve this type of designing.
Please tell me one more thing, in this screen-shot when i run the solution this blue line selection comes automatically, please tell me which property will remove this blue selection.
Please see screen below:-
If you only need to display one of the three columns, then what I would do is hide all three of them and dd an unbound column. Then you can use the InitializeRow event of the grid to populate the unbound column with the text from whichever of the three columns you like.
Please tell me in this screen-shot there is 3 columns MessageFor2, MessageFor3,
MessageFor4.
Condition-1
I want to display only one at a time.
if suppose i want to display MessageFor2 it means i dont want MessageFor3 and MessageFor4
Condition-2
if suppose i want to display MessageFor3 it means i dont want MessageFor2 and MessageFor4
Condition-3
if suppose i want to display MessageFor4 it means i dont want MessageFor2 and MessageFor3
tell me how to hide only one at run time, please reply as soon as possible.
Please see screen-shot:-