cool lib .. custom ScrollBar -> custom color -> full custom theme ...Thorsten1867 wrote:I am currently building my own ScrollBar into ListEx, then I could send a corresponding event.

cool lib .. custom ScrollBar -> custom color -> full custom theme ...Thorsten1867 wrote:I am currently building my own ScrollBar into ListEx, then I could send a corresponding event.
The Scrollbar produce only the event #EventType_ScrollBar if the position is changed.davido wrote:I also noticed that clicking the 'drag-bar' produces an event: the last chosen row!
loulou2522 wrote:How can i deselect all row in listex ? or only for one column
Code: Select all
ListEx::SelectItems(#List, ListEx::#None)
Code: Select all
ListEx::AddItem(#List, ListEx::#LastItem, initial)
ListEx::SetItemImage(#List, listex::CountItems(#list, #False)-1, 7, #Image, ListEx::#Center, 14, 14)
ListEx::SetState(#List,listex::CountItems(#list, #False)-1 ,4)
Code: Select all
ListEx::SelectItems(#List, ListEx::#None)
2/ After having given the focus to a cell to be able to enter data I am obliged to click with the mouse on the selected cell otherwise the data input is blocked. I thought that giving focus to a cell would allow you to enter data into it ? Is this the case or is it a limitation of the program?ListEx::SetState(#List,listex::CountItems(#list, #False)-1 ,4)
Code: Select all
ListEx::AddColumn(#List, ListEx::#LastItem, "LIBELLE", 200, "Libelle", ListEx::#Text|ListEx::#Editable) ListEx::SetColumnAttribute(#list,5,ListEx::#MaxChars,140)