Questions tagged [nette]

Nette Framework is an open source tool for PHP web development. Nette focuses on security and performance and it's one of the safest PHP frameworks.

Nette Framework is an MVC framework developed by David Grudl. It is designed to be as easy as possible to use and it is one of the safest frameworks.

Latte is used as a primary templating engine which has features such as macros, filters, context-aware output escaping, localization support or custom blocks.

Nette offers an easy to use service container, allowing to register singleton or factory created services. The service container also supports Dependency Injection with automatic (can be disabled) injection of services into constructors of other services or controllers.

Current Nette version: 2.4

Resources

142 questions
0
votes
1 answer

Multiselect with select2 plugin with data via AJAX in nette return an empty array

I have this code in JS. Data results are loaded via handle from Presenter. $('.selectTypeAhead').select2({ multiple: true, ajax: { url: url, dataType: 'json', delay: 250, …
raguprd
  • 3
  • 3
0
votes
2 answers

Nette getHttpData include of unchecked checkboxes

can somehow unchecked checkboxes be included when I have a form with a dynamic number of checkboxes (name='golyPenalta[]') and in submit I get them using $form->getHttpData($form::DATA_TEXT, "golyPenalta[]"); ? Only the ones that have been checked…
Johny12369
  • 75
  • 7
0
votes
1 answer

Nette - snippet update

I have a problem with snippet updating. After changing the selection in the select box, I redraw the contents of options in another select box but the snippet doesn't update. Latte:
...