I can not find the function under kendo.bind kendo class. I used the beta version 2013.q1. This is a license requirement?
With a library using require.js.
Thanks.
kendo.bind is part of KendoUI and might be found in different files depending on your KendoUI distribution / strategy (include all, include the minified files, include sources,...).
The two most typical files where you can find it are:
js/kendo.all.min.js.
js/kendo.web.min.js.
The kendo.bind method is available in kendo.binder.min.js if you are using stand alone files.
Related
I have a sulu 1.6 installation with multiple webspaces. I have multiple page template definitions in app/Resources/templates/pages, like default.xml, homepage.xml, blog.xml, center.xml.
Is it possible to make for example the center.xml only available for the content of one webspace and not all the others?
UPDATDE:
Where can I change this behaviour in the code, that per webspace only the ones are showing up, that are defined in the webspace.xml? This is really blocking and a super bad user experience, since the template is directly linked together with the configured webspace, but the others do not fit.
Thx a lot!
Andreas
The template is only shown in the dropdown if its .html.twig file exists. So if you use the SuluThemeBundle and only a specific theme implements its .html.twig file the template will not be shown on the other theme aslong as the .html.twig does not exists there.
This feature has not yet been implemented, because not too many people have asked for it...
Since Sulu 2.0 you can limit the template on the webspace using the exclude-templates inside your webspace configuration:
<excluded-templates>
<excluded-template>overview</excluded-template>
</excluded-templates>
Before the only way to limit page templates was to work with themes.
I have to migrate TYPO3 6.2 websites to 8.7. Some websites use custom pibase extensions, do I need to redevelop them with Extbase ?
All previous answers have been correct but some words from a TYPO3 core team member: There are no plans to drop the support of "pibase" in the core. It is absolutely ok to use that API even though it does not provide much help to developers.
However I recommend to use at least fluid standalone to be able to create nice templates without all those ### stuff.
you don't need to redevelop these extensions, but you might need to change the call to core functions.
In 6.2 you still could use the old class names like t3lib.
These class names are available only with compatibility layer (together with a lot of delay).
For the future you need to use namespaces (and the correct new classes). You also should use namespaces for your own classes.
Depending on your used functions you might need to replace some calls with the newer functions as some functions got deprecated meanwhile.
You don't need to redevelop these extensions.
Just you need to change some TYPO3 core function like t3lib_div t3lib_BEfunc t3lib_parsehtml t3lib_extMgm and more..
Please see complete example here : See more details
I tried much exploring the file/database table which is responsible for showing labels for a particular module in studio.
I looked at en_Us.lang files at all places including cache. But I don't see there a dependency.
Thanks in advance!
Core Module Labes are defined in modules/{modulename}/language/{languagekey}.lang.php
If you want to add or change them you should do that in the custom area you can find the Documentation for the Language Extension Framework:
I am looking for a good template based run-time code generation library in Scala. I need this for my ERP system to generate artifacts (html, and other code files)
Can any please point me in right direction?
You should take a look at Scalate. It has multiple syntax choices and if you use SSP you can easily create templates for text other than HTML as well.
If your app is web-based, Play has a templating system for generating the output pages.
this is exactly what I am looking for http://www.developerextensions.com/index.php/extjs-filter-row but I could not find a version which would work well with extjs 4
Its very possible that I created a false code because I am noobie in extjs so could you please help me with this or some similar extension how exactly to implement it and make it work?
Thank you very much in advance.
You don't need to use external plugins. In Ext JS 4.1 filtering can be done easily without any plugins.
There are nice examples of both local and remote filtering in documentation.
Remote filtering
Local filtering
Here is a grid plugin that adds filtering row below grid header. Allows remote filtering and supports pagination grids.
https://github.com/roberto-rodriguez/ExtJs_GridFilterPlugin
It works pretty well in Ext version 4.
Here is an image of what it does: