Jump to content

eduardosuruagy

uniGUI Subscriber
  • Posts

    845
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by eduardosuruagy

  1. Open the C: \ Program Files (x86) \ FMSoft \ Framework \ uniGUI \ Demos \ Desktop \ GridFiltering project then open the database and add a new record and leave that field blank, then see that it is not shown On the grid when it runs.
  2. This is similar to the other when it goes to the next field it is already in the editing state. Do a test on a grid with no record and try to include a new record using this function you showed, see that when it arrives in the last column it does nothing, neither the tab nor the enter work...
  3. I wanted this method as it was made to jump from the line in line and jump from column to column and when it reached the last column jumped to the next line, understood? function reconfigure(sender, store, columns, oldStore, the, eOpts) { var grid = sender; for (var i = 0; i < columns.length; i++) { if (columns.getEditor()) { columns.getEditor().on('specialkey', function(field, e) { if (e.getKey() == 13) { var store = grid.getStore(); var selModel = grid.getSelectionModel(); var selectedRecord = selModel.getLastSelected(); var recordIndex = store.indexOf(selectedRecord); var nextRecord = store.getAt(recordIndex + 1); if (nextRecord) { selModel.select(nextRecord); if (grid.editingPlugin && grid.uniRow && grid.uniCol){ var _row = grid.uniRow; var _col = grid.uniCol; setTimeout(function(){ grid.editingPlugin.startEdit(_row, _col); }, 10); } } } }) } } }
  4. I just found out and saw that if I have a column with the Null value the filter does not return anything on the grid
  5. Good afternoon, can anyone help me? I would like my grid to click on the Enter it jumps between the columns and not between the lines as shown here. Has as?
  6. Can you connect between two tables and do the dbgrid filter?
  7. I already ran the select and it shows the record, as I am using the left command it shows even if it has not registered in the table "OWNER". I tried to do this command below, so the grid shows the results and the filters of the "LOG_UF" and "LOG_CITY" columns do not work. SELECT P.*, LOG_BAIRRO, LOG_CEP, LOG_ENDERECO, LOG_CIDADE, LOG_UF FROM PROPRIETARIO P LEFT JOIN LOGRADOUROS ON (PRO_LOGRADOURO_ID = LOG_CODIGO_ID) WHERE PRO_EMPRESA_ID = 1 AND PRO_RAZAO_SOCIAL LIKE :PRO_RAZAO_SOCIAL AND (LOG_UF LIKE :LOG_UF OR LOG_UF IS NULL) AND (LOG_CIDADE LIKE :LOG_CIDADE OR LOG_CIDADE IS NULL) ORDER BY PRO_RAZAO_SOCIAL
  8. Good evening, can anyone help me? I would like my grid to click on the Enter it jumped between the columns and not between the lines as shown here. Has as?
  9. I'm having a problem with a grid and its filter, if I have 2 related tables and the second table has no record the grid does not show the information. The select is this: SELECT P.*, LOG_BAIRRO, LOG_CEP, LOG_ENDERECO, LOG_CIDADE, LOG_UF FROM PROPRIETARIO P LEFT JOIN LOGRADOUROS ON (PRO_LOGRADOURO_ID = LOG_CODIGO_ID) WHERE PRO_EMPRESA_ID = 1 AND PRO_RAZAO_SOCIAL LIKE :PRO_RAZAO_SOCIAL AND LOG_UF LIKE :LOG_UF AND LOG_CIDADE LIKE :LOG_CIDADE ORDER BY PRO_RAZAO_SOCIAL
  10. There are 2 emails with the purchase data, that's all. I looked at spam and there was nothing.
  11. The emails are the same but I have not received access to the client portal yet. How much time do I get? I made the payment yesterday with a credit card.
  12. I bought the unigui yesterday and I will wait to get the data to install the new version, as soon as possible I will do a test and I will send it to you.
  13. You can give me an example, because I could not make the example here. Thank you!
  14. You can give me an example, because I could not make the example here. Thank you!
  15. I am using the trial version 1.00RC1385. I'm doing some registration screens that I use on my desktop system, if it works I'll buy unigui this week. Thank you for your help!!
  16. I have the same problem and in my case I have to exclude the cache folder that is created by the application
  17. I tried, but when it comes to the last line and the last column it does nothing. Even clicking enter nothing happens. If the grid does not have any record when it will include the first record and you get in the last column nothing will happen as well.
  18. Good Morning, How do I jump to the next column? I want to use that same example by jumping to the next column and when it reaches the last column it jumps to the next row. Thank you!!
  19. Eu tbm estou com esse problema, quando eu coloco um label dentro do Panel e coloco o alinhamento allclient ele não funciona.
×
×
  • Create New...