Hello
I have a problem with my custom css file in NetTalk 5.33. In this file I have some classes which I use to in NetWebBrowse procedure for example to browse header.
In NetTalk 5.29 browse header was created by commands:
packet = clip(packet) & '<th class="'&p_web.combine(MyBrowseHeaderStyle)&'" Title="'&p_web._jsok('Click here to sort by Day')&'">'&p_web.Translate('Day')&'</th>'&CRLF
do AddPacket
loc:columns += 1
and everything works perfect.
After upgrade NetTalk to version 5.33 browse header was created by commands:
packet = clip(packet) & p_web.CreateSortHeader(loc:vordernumber,'4','MyBrowse',p_web.Translate('Day'),'Click here to sort by Day',,,,,,1,loc:Sorting,'String')
do AddPacket
loc:columns += 1
and after open MyBrowse it has different class called 'nt-left' and preperty 'min-width' which I can't change. So browse header looks different. I found that this class 'nt-left' is permanent in NetWeb.clw in line 7804: packet = clip(packet) & '<div data-role="sh" class="nt-left">'
And one more problem after that:
When I clicked first time on MyBrowse every column change hight of some value.
When I clicked second time on MyBrowse some column change width of some value.
After other clicks MyBrowse remains unchanged.
This is a very strange behavior.
My question is:
Is it any way to not include class nt-left and property min-width which wasn't automatically include in NetTalk 5.29?