Jump to content

Alexandre Storti

uniGUI Subscriber
  • Posts

    23
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Alexandre Storti's Achievements

Newbie

Newbie (1/4)

0

Reputation

  1. Searching the forum I found some examples to use in RadioGroup, what I couldn't do is change the color of the radiobutton when it is selected (see image). customcss: .meuRadioGroup { background: rgb(36, 44, 55); border: none; padding: 10px; } .meuRadioGroup input[type="radio"]:checked + label::before { background-color: coral; } function beforeInit(sender, config) { config.fieldDefaults = { style: 'padding: 5px; height: 50px;' } }
  2. Thank you very much. Enjoying: where can I find documentation on all the css properties available for dbGrids?
  3. I used the css below as a test, is there any css parameter for this? .gridteste .x-grid-column { border-style: solid; border-width: 1px 1px 1; height: 40px; line-height: 30px; padding: 0 8px; vertical-align: middle; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 12pt; font-weight: bold; text-align: left; background-color: #CD5C5C; color: white; } .gridteste .x-grid-cell { height: 39px; line-height: 40px !important; font-family: 'Arial', Arial, Helvetica, sans-serif; font-size: 14pt; color: black; border-collapse: collapse; border-style: solid; border-width: 1px 1px 1; } .gridteste .x-grid-row {background-color: #CD5C5C;} .gridteste .x-grid-row.x-grid-item-odd {background-color:coral;} .gridteste .x-grid-row.x-item-selected{background-color:chartreuse}
  4. Okay, I currently use hyper_server on IIS. If you start using it in Nginx, will everything be the same? Can I continue using it in the same way or will it necessarily have to be a standalone application?
  5. Can I use NGINX instead of IIS on a Windows Server?
  6. Good afternoon I created a Web Browser in FMX exclusively to navigate the application made in Unigui. It turns out that now in the development phase I'm in, I went to add access to the camera and the following happens: On desktop: works normally. On IOS: works normally. On Android: gives this error: Cannot read properties of undefined (reading 'getUserMedia') If I browse directly in the Android browser: it works normally. So the conclusion is that the problem is in the browser I created, have you ever seen someone try this in the same way as me and have success? Alexandre Storti
  7. Would it be this way? procedure TMainForm.btnPesquisarClick(Sender: TObject); var Vitrine : TfrmVitrineFORM; begin Vitrine :=TfrmVitrineFORM( FindClass('TfrmVitrineFORM') ) .Create(UniApplication); Vitrine.qrVeiculosAfterOpen(nil); end;
  8. I have a form called FrmVitrineForm: function frmVitrineFORM: TfrmVitrineFORM; begin Result := TfrmVitrineFORM(mm.GetFormInstance(TfrmVitrineFORM)); end; I try to call it to refresh a query through the function above, but the Form enters the OnCreate again, that is, it is being recreated, how can I access it without recreating it? with frmVitrineFORM do begin frmVitrineFORM.qrVehiclesAfterOpen(nil); end;
  9. Searching the forum I had found this code earlier, but nothing changed in the result. Please see in the images if I added correctly as it should be.
  10. Is it possible for the text to be shown in the same way as the list contained in the combo?
  11. I had to send everything because the images come from a firebird 4.0 database. CarSales_Unigui.rar
  12. Eu tentei isso ontem, mas no gettext: eu só posso passar texto, correto? Como uma imagem iria para lá?
×
×
  • Create New...