Jump to content


qwerty

Member Since 03 May 2007
Offline Last Active Aug 28 2007 05:19 PM
-----

Topics I've Started

Grid selected[] strange behaviour

28 August 2007 - 03:36 PM

Good day.

I need to implement feature like this. Just imagine.
You have a grid on your form. Than you click on field title and choose menu «Select similar». The grid looks what is the value in the active cell and must select all rows which have the same value in that field (loop by column).

After that if you press key arrows (change active row) selected items don't lose their states.

Here is the code to see that bug.
CODE
Grid.BeginUpdate;
for j := 0 to Grid.RowCount - 1 do begin
Grid.Selected[j] := true;
end;
Grid.EndUpdate;
Grid.SetFocus;


How to solve this?

DateTime picker feature

22 August 2007 - 11:41 AM

Hi

http://extjs.com/dep...rm/dynamic.html (You must enable JS for viewing)
There is a good idea for datetime picker. You can quick choose year and month.
You can see it in form "Fieldsets, labels right and complex fields" field "Date of Birth".

I suppose it's a really great. May be you'll add this feature in future.

Sorry for my English.

Source code of Main Demo

22 June 2007 - 01:05 PM

Good day.

Is it possible to get source code of main demo example.
You know my english isn't good enought and it will be very useful for me to look examples.

I suppose that this will be useful for all your users.

Bug with UNICODE charset (while using XP manifest file)

10 May 2007 - 03:38 PM

I have found a bug in NextInspector 4.4

If NextInspector works with windows XP Style support (manifest file). It has a bug.

I put TXPManifest on the form. I put inspector and added text item.
Caption is ‘test’
If Value starts with Russian char ‘ya’ (0xff in windows1251) the component has a bug while you are switching Text Item in edit mode.
If you are trying to edit it puts char ‘?’, if you press esc key (to undo changes) the value is ok.

I think this component doesn’t work correctly with Unicode characters set.
I've already tested with other Russian characters. This bug is only appearing with first char 'ya' in value property.