Overview in a combined file
Hello !
I work with templates. In my case i have a file with html and javascript.
See example:---------------
<script type="text/javascript">
<!--
var gridHotel;
var gridProducts;
var storeGridHotel;
var storeGridProducts;
var formProduct;
var memoryHotelId;
var condition_new = '1';
var condition_passiv = '2';
var condition_aktiv = '3';
Ext.onReady(function(){
storeGridHotel = new Ext.data.JsonStore({
id: 'storeGridHotel',
root: 'data',
url: '/admin/hotelproducts/gethotels/',
totalProperty: 'anzahl',
method: 'post',
autoLoad: true,
fields: [{
name: 'id'
},{
name: 'property_name'
},{
name: 'property_code'
},{
name: 'aktiv'
}]
});
and a little bit Html: ------------------------
<div class='span-32' id='info' style='height: 50px; border: solid black 1px;'></div>
<div class='span-15' id='panelGridHotel' style='border: red 1px red;'></div>
<div class='span-15' id='panelGridProducts' style='border: red 1px yellow;'></div>
<div class='span-32' style='height: 10px; border: solid black 1px;'></div>
<div class='span-30' id='panelFormProduct' style='border: #66ffcc 1px green;'></div>
-----------------
Is in PhpStorm a panel where i can see the functions and objects from javascript ?
In the moment i have the panel 'Structure'. But i can't see the objects from javascript.
Attachment(s):
view.jpg
Please sign in to leave a comment.
Hello !
It's mystic. When i open another templat i can see the javascript objects and the html.
Is there a special options ?
Greetings Stephan
Attachment(s):
view.jpg