
ainsama1
Members-
Content Count
8 -
Joined
-
Last visited
-
ainsama1 started following UnimDBList with Badge?, DBLookupComboBox set value, Add a HTML code beside the Caption of button and 1 other
-
may i know how did you do it?
-
I want to make it look like this. Is there a way to insert this code right after the caption of a button? <span class="badge badge-secondary">New</span>
-
Hi zemorango, Your gray theme looks awesome! Unfortunately i can't download it. Can you upload it in google drive or somewhere else? Thanks in advance!
-
Like on UniDbGrid there's OnCellClick that gets the data of which is clicked. How do I it in UnimDbListGrid?
-
Is there a way to apply this approach on Mobile? Specifically in UnimDbListGrid? @Sherzod
-
Is there a way to add a Badge on a UnimDBList Items?
-
nvm i alr got it
-
Hi, I have this Grid that shows the PC parts. But instead of displaying the Items, it displayed "(Memo)". I've read many threads it says it can be done like this: procedure TForm1.DBGrid1DrawDataCell(Sender: TObject; const Rect: TRect; Field: TField; State: TGridDrawState); var S: String; begin if Field.DataType = ftMemo then begin S := Field.AsString; DBGrid1.Canvas.Pen.Color := clWindow; DBGrid1.Canvas.Brush.Color := clWindow; DBGrid1.Canvas.Rectangle(Rect); DBGrid1.Canvas.TextOut(Rect.Left, Rect.Top, S); end; end; But the UniDBGrid