Hot answers tagged view
10
You should be able to use the following which JOINS table3 on the t2.tree and the left two characters of the t3.tree:
SELECT t1.`date` , t1.`name` , t2.`tree` , t1.`total` , t1.`recieve`,
max(case when right(t3.tree, 2) = 'SI' then t3.users end) usersSI,
max(case when right(t3.tree, 2) = 'NO' then t3.users end) usersNO
FROM `table1` t1
INNER JOIN ...
5
you have many ways to do this more properly :
use a ViewModel class, where you have a property which is your Rounded value
public class MyViewModel {
public double BudgetYear {get;set;}
public double RoundedBudgetYear {get {return Math.Round(BudgetYear, 2);}}
}
and in View
@Html.DisplayFor(m => m.RoundedBudgetYear)
or
Add a DisplayFormat ...
4
createLink
remoteLink
remoteFunction
Use anyone from above according to your need. I bet you will also get samples/questions/answers here in SO related to the same requirement if you search.
3
just use url() viewhelper inside your *.phtml view file:
Syntax usage:
$this->url(array(
'controller' => '<yourcontroller>',
'action' => '<youraction>'),
'default', true);
Example:
<a href="<?php echo $this->url(array(
'controller' => 'public',
'action' => 'about'), ...
3
I ran into the same problem before when I started Android Development...
There is a different XML file under "menu" in your project resources - this is much different from the layout XML file. Put the <menu> and <item>(s) in the "res/menu/main.xml".
Also, the Android Studio has an odd way of telling you to import stuff... make sure you use
...
2
Sometimes we need the data in the format of json. Ruby on Rails is one of the must used framework as backend of mobile application (android, ios). The android and ios support data in the format of json. so the data of json format is generated when scaffloding. In case of web application it is not necessary to generate data in the format of json.
2
Services are singletons, so when the service is injected the first time, the code in the factory gets called once. I'm assuming you have a routing table, since you are talking about multiple pages.
If you define this
angular.module('services', [])
.factory('aService', function() {
var shinyNewServiceInstance;
//factory function body that constructs ...
2
Grails has some powerful built-in GSP tags which come in quite handy here. For example:
<g:each in="${items}" var="i">
<tr>
<td>${i.Id}</td>
<td>${i.Name}</td>
<td>${i.Code}</td>
<td>${i.RunType}</td>
<td><a class="button" href="${createLink(controller: ...
1
While you are setting their visibility to GONE, at same time add them to a predifined arraylist, that way you'll always have a record of views which are not visible.
In OnCreate:
hiddenViews = new ArrayList<View>();
While setting their visibility:
view.setVisibility(View.GONE);
hiddenViews.add(view);
Now, you can access hiddenViews arrayList at ...
1
To find hidden views, you can do something like:
LinearLayout parentLayout = (LinearLayout) findViewById(R.id.parent_layout);
int childViews = parentLayout.getChildCount();
List<View> hiddenViews = new ArrayList<View>();
for (int i = 0; i < childViews; i++) {
View v = parentLayout.getChildAt(i);
if ...
1
Here is the code,
final Dialog dialog1 = new Dialog(CatchTheCatActivity.this);
dialog1.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog1.setContentView(R.layout.custom_alert);
dialog1.show();
And layout custom_alert.xml,
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
1
public public MyView1(Activity activity, AttributeSet attrs) {
super(context, attrs);
myActivity=activity;
}
public void Start_Button(View view)
{
View1= new MyView1(this, null);
setContentView(View1);
}
Just call myActivity.setContentView(R.layout.original_layout_for_MyActivity1);
1
The reason is because only alert and notice can be used inline with redirect_to using this syntax. For any other flash key, you need to specify:
redirect_to questionnaire_url, flash: {error: "Now please fill in the questionnaire."}
1
As @Matt mention in his comment, the easiest way is to use has_many associations with :through option.
You can read more about this in Rails guides.
class Site < ActiveRecord::Base
has_many :customer_sites, foreign_key: :site_id
has_many :connections
end
class CustomerSite < ActiveRecord::Base
belongs_to :site
belongs_to :customer
end
class ...
1
I know this is old question, but if someone still looking for Facebook UI, here is an exact clone for Facebook iOS app, with sliding panels
https://github.com/gresrun/GHSidebarNav
Here is one more similar control
https://github.com/gotosleep/JASidePanels
1
You have to make a distinction between a number of things:
currentList.up() returns a DOM element (Ext.dom.Element). This has no method push().
With Ext.widget('details', config); you can pass a config like {itemTpl: yourTemplate, data: yourData} to create an instance with a custom template and custom data.
To update your component after creation you can ...
1
The way that I did my login DialogFragment was by using a callback method to the fragment's parent activity like such:
builder.setPositiveButton("Login", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
EditText username = (EditText) getDialog().findViewById(R.id.username);
...
1
What you're talking about are materialised views, a feature of (at least) DB2 but not MySQL as far as I know.
There are ways to emulate them by creating/populating a table periodically, or on demand, but a true materialised view knows when the underlying data has changed, and only recalculates if required.
If the data will never change once the view is ...
1
Most modern RDBMSs support insertable and updatable views.
If your RDBMS supports it, then you shouldn't have any problem. A view that is identical to a table should be updatable in any RDBMS that supports such views. So you only need to change your mapping and replace the table names with the view names.
1
Personally, i don't think different View for each desktop browser is the way to go, the problems you're trying to address are probably Css/JavaScript issues and not related to the View which basically should contain content and not functionality / design.
However, you can leverage the new DisplayModeProvider mechanism (in MVC 4):
In your Global.asax:
...
1
According to this post, you have to define the mapping like this:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
or like that:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
...
1
Both containers have the exact same name..eventContainerSub.
There is no eventContainer, change the view group to be the container as you planned..
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
...
1
You are depending on the group by taking the last version of something, based on the ordering of the data. Although this might work in practice, MySQL documentation specifically says this is not supported. Instead, try something like:
create view LastVersion as
select s.*
from strings s
where s.chapter = (select max(chapter)
...
1
You can't, at least not in your current code.
Your ColoredView class currently extends View, which does not support having its own child Views. If you want to add child views to it, you will have to create a class extending ViewGroup (or any of ViewGroup's subclasses).
Once your class extends ViewGroup, you can simple use the addView() method to add Views, ...
1
You can change appearance of button to look alike forward button by setting ui : "forward" config for button.
You can add buttons to navigation bar with following way -
navigationBar : {
items:[
{
xtype:'button',
text:'Forward',
ui:'forward'
}
]
},
...
1
Try checking if there is an ID assigned before assigning a new one!
for(int i = 1; i <= kNumberofViews; i++){
View v = new MyView(context);
RelativeLayout.LayoutParams params = new LayoutParams(kViewWidth, kViewHeight);
params.setMargins(kMarginLeft, kMarginTop, kMarginRight, kMarginBottom);
params.addRule(CENTER_HORIZONTAL);
if ...
Only top voted, non community-wiki answers of a minimum length are eligible




