Jump to content

robinhodemorais

uniGUI Subscriber
  • Posts

    166
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by robinhodemorais

  1. I'm setting up a html calendar, I was using HTMLFrame, but I had some problems getting the layout right, so I switched to URLFrame and managed to adjust the layout smoothly, but his AjaxEvent is not working and I need to get the data when I click

    this is the event

    procedure TfrmAgeCadAgenda.UniURLFrame1AjaxEvent(Sender: TComponent;
      EventName: string; Params: TUniStrings);
    Var stAux: TStringList;
      dia : integer;
    Begin
    
      stAux := TStringList.Create;
      stAux.Delimiter :='_';
      stAux.DelimitedText := EventName;
      ....
    end;

    this is part of html

    <div class="schedule-cell" onclick="ajaxRequest(frmAgeCadAgenda.UniURLFrame1, 'novo_08:00_13',[])"><span class="invisivel">#08_00_13</span></div>

    What can it be ?

     

×
×
  • Create New...